問題二十二 Angular 不知道數值有沒有正確的變化怎麼辦?
這個問題是開發上天天都會碰到的問題,ng-modal 的數值有沒有正確的變化?
要檢測其實很簡單,有一個內建的函式可以使用,就是 $watch
使用方法很簡單,如下面的範例
scope.$watch('name', function(newValue, oldValue) {
console.log("newValue=>", newValue)
});
name 其實就是你的 ng-modal 的名字,當然不是只能 console.log 而以你還可以做更多的事情,只是這邊範例用 console.log 而已,另外不同 $watch 也可以綁定到同一個 ng-modal 喔!